home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
More Source
/
Libraries
/
SAT 2.3b4
/
Misc
/
TransSkel
/
PPCTransSkelCallProcs.p
< prev
next >
Wrap
Text File
|
1995-01-27
|
927b
|
21 lines
unit PPCTransSkelCallProcs;
interface
uses
Types, QuickDraw, Events, Windows, Dialogs, Fonts, DiskInit, TextEdit, Traps,{}
Memory, SegLoad, Scrap, ToolUtils, {}
OSUtils, Menus, Resources, StandardFile, GestaltEqu,
Files, Errors, Traps;
procedure CallpMouse (thePoint: Point; theTime: longint; theMods: integer; myProc: ProcPtr);
procedure CallpKey (theChar: char; theMods: integer; myProc: ProcPtr);
procedure CallpEvent (theitem: integer; var theEvent: EventRecord; myProc: ProcPtr);
function CallotherEvent (var theEvent: EventRecord; myProc: ProcPtr): Boolean;
procedure CallpBoolean (myBool: Boolean; myProc: ProcPtr);
procedure CallpInt (myInt: integer; myProc: ProcPtr);
procedure CallpMenu (myMenu: MenuHandle; myProc: ProcPtr);
procedure Callpnoarg (myProc: ProcPtr);
procedure Callpfilter (theDialog: DialogPtr; var theEvent: EventRecord; var result: Boolean; myProc: ProcPtr);
implementation
end.